home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / pastutor.EXE / tutor01.pas < prev    next >
Pascal/Delphi Source File  |  1998-04-02  |  496b  |  24 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision 2.0 Demo                        }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Tutor01;
  9.  
  10. uses App;
  11.  
  12. type
  13.   TTutorApp = object(TApplication)
  14.   end;
  15.  
  16. var
  17.   TutorApp: TTutorApp;
  18.  
  19. begin
  20.   TutorApp.Init;
  21.   TutorApp.Run;
  22.   TutorApp.Done;
  23. end.
  24.